home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c-part2 / 13585 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  1.0 KB

  1. Path: news.primenet.com!not-for-mail
  2. From: isoscele@primenet.com (Chris Burns)
  3. Newsgroups: comp.lang.c
  4. Subject: Re: Turbo C++ 3.0 Timer.H
  5. Date: 8 Apr 1996 17:31:01 -0700
  6. Organization: Abstract Creations
  7. Sender: root@primenet.com
  8. Message-ID: <4kcb45$i5d@nnrp1.news.primenet.com>
  9. References: <4k98hl$3fk@sanjuan.islandnet.com>
  10. X-Posted-By: ip166.msp.primenet.com
  11. X-Newsreader: Forte Free Agent 1.0.82
  12.  
  13. Abram Hindle <abehind@islandnet.com> wrote:
  14.  
  15. >How do I use the TIMR.H is turbo c++?
  16. >I try but can't seem to do anything!
  17. >I include it then I try starting a timer by going:
  18. >Timer::start();
  19. >It then says error and it should have a -> or a . in front of
  20. >it so I put the . in front of it and it gives me other error
  21. >messages. It's memmber of Timer(); I'm calling but it doesn't 
  22. >do anything for me! COuld You guys PLEASE HELP?
  23. >Abram Hindle
  24. >e-mail: abehind@islandnet.com
  25.  
  26.     A) Declare your Timer object, ex: Timer stopwatch;
  27.     B) Start Timer, ex: stopwatch.start();
  28.  
  29.     You should've been able to glean THAT much from the online help.
  30.  
  31.     - Chris    
  32.  
  33.